home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-04-03 | 1.1 KB | 48 lines | [TEXT/PJMM] |
- { This file has been processed by The THINK Pascal Source Converter, v1.1. }
-
- {}
- {Created: Monday, January 28, 1991 at 4:48 PM}
- { Fonts.p}
- { Pascal Interface to the Macintosh Libraries}
- {}
- { Copyright Apple Computer, Inc. 1985-1990}
- { All rights reserved}
- {}
-
-
-
- { RMS 4/3/91 Modified to exclude declarations already in the THINK Pascal built-in interfaces }
-
-
-
- unit Fonts;
- interface
- uses
- Types;
-
- function IsOutline (numer: Point; denom: Point): BOOLEAN;
- inline
- $7000, $A854;
- procedure SetOutlinePreferred (outlinePreferred: BOOLEAN);
- inline
- $7001, $A854;
- function GetOutlinePreferred: BOOLEAN;
- inline
- $7009, $A854;
- function OutlineMetrics (byteCount: INTEGER; textPtr: univ Ptr; numer: Point; denom: Point; var yMax: INTEGER; var yMin: INTEGER; awArray: FixedPtr; lsbArray: FixedPtr; boundsArray: RectPtr): OSErr;
- inline
- $7008, $A854;
- procedure SetPreserveGlyph (preserveGlyph: BOOLEAN);
- inline
- $700A, $A854;
- function GetPreserveGlyph: BOOLEAN;
- inline
- $700B, $A854;
- function FlushFonts: OSErr;
- inline
- $700C, $A854;
-
- implementation
- end.
-
-